
/*colores que modifican los titulos*/
:root{

     --color1: #06185b;
  --color2: #0094c0;
    /*black*/
    --black-100:#1b1b1b;
    --black-50:#424040;
    --black-25:#6e6d6d;

    /*white*/
    --white-100:#fafafa;
    --white-75:#e6dddd;
    --white-50: #fafafaa1;
    --white-25: #fafafa49;

    /*gray*/
    --gray-100: #868585;
    --gray-50: #bbb9b9;
    --gray-25: #c6c3c3;

    /*primary*/
    --primary-100:#1d2f52;        
    --primary-50: #008aff;
    --primary-25: #716fc2 ;
    /*secundary*/
    
    --secundary-100: #fb90a8;;        
    --secundary-50: #85b851;
    --secundary-25: #90b66a ;


    --gradient-blue: linear-gradient(to right, #265CB1, #3876a5, #3d7fb1, #4189be, #4692ca);


/*colors*/
--purple: #bb00ffaa;
--purple-princ:#4b2868;
--green: #0a970a; 
--blue: #1639d3;
--blue-50: #3f54b2;
--red:  #a40a19;
--yellow: #d8c709 ;
--cyan: #1ed1da ;
--especial: none ;

/*color icons list*/
--color-i-header : var(--blue);
--color-i-slider : var(--green);
--color-i-second-title: var(--blue);
--color-btn-1 : var(--blue);

--rojo: #87b9e4;
--rojo2: #2d67c1;

}






.text_xl{
    font-size: 2rem !important;
    line-height: 30px !important;
}


.text_l{
    font-size:1.3rem !important;
    line-height: 25px !important;
}


.text_sm{
    font-size: 1rem !important;
    line-height: 20px !important;
}



@media only screen and (min-width: 600px){
.text_xl{
    font-size: 3rem !important;
    line-height: 50px !important;
}

.text_l{
    font-size: 2.3rem !important;
    line-height: 40px !important;
}


.text_sm{
    font-size: 1.5rem !important;
    line-height: 30px !important;
}

}



/*textos negros*/
.text_black-100{
color: var(--black-100) !important;
}
.text_black-50{
color: var(--black-50) !important;
}
.text_black-25{
color: var(--black-25) !important;
}




/*textos blancos*/
.text_white-100{
color: var(--white-100) !important;
}

.text_white-75{
color: var(--white-75) !important;
}
.text_white-50{
color: var(--white-50) !important;
}
.text_white-25{
color: var(--white-25) !important;
}





/*textos grises*/
.text_gray-100{
color: var(--gray-100) !important;
}
.text_gray-50{
color: var(--gray-50) !important;
}
.text_gary-25{
color: var(--gray-25) !important;
}

/*textos principales*/

.text_primary-100{
color: var(--primary-100) !important;
}
.text_primary-50{
color: var(--primary-50) !important;
}
.text_primary-25{
color: var(--primary-50) !important;
}




/*textos secundarios*/

.text_secundary-100{
color: var(--secundary-100) !important;
}
.text_secundary-50{
color: var(--secundary-50) !important;
}
.text_secundary-25{
color: var(--secundary-25) !important;
}




/**baner info */

#banner_background{
    background: -webkit-linear-gradient(-90deg, var(--rojo), var(--rojo2) 100%);



}

.overlay-header{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/shapes/shape-15.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}




.img-info{
    border-radius: 100%;
    background-color: rgba(240, 248, 255, 0.418);
    object-fit: cover;
    box-shadow: 0px 0px 9px 2px #2a2929;
}



/*botones de cta*/

.btn1 {
    background: rgb(27,128,191);
    background: -moz-linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    background: -webkit-linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    background: linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b80bf",endColorstr="#1b80bf",GradientType=1);
    color: #ffff !important;
    box-shadow: rgb(0 0 0 / 45%) 0 25px 20px -20px;
    background-size: 100%;
    transition: 0.5s ease;
    text-transform: uppercase;
}


.btn1{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: inline-block;
    text-transform: capitalize;
    padding: 15px 25px;
    font-size: 12px;
    border-radius: 100px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #fff;
    border: none;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}

.btn1 span{
    margin: 0 !important;
    padding: 0 !important;
    color: #ffff !important;
    font-size: 18px !important;
}

.btn1 span i{
    font-size: 25px !important;
}




.btn1:hover {
    background: rgb(27,128,191);
    background: -moz-linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    background: -webkit-linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    background: linear-gradient(45deg, rgba(27,128,191,1) 20%, rgba(102,181,248,1) 50%, rgba(27,128,191,1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b80bf",endColorstr="#1b80bf",GradientType=1);
    background-size: 300%;
    transform: scale(1) translateY(-5px);
}

.btn1:focus, .btn1:hover {
    background: #0e3340;
    color: #fff;
}




.btn2{
    background: rgb(81,179,86);
    background: -moz-linear-gradient(45deg, rgba(81,179,86,1) 20%, rgba(142,191,69,1) 50%, rgba(81,179,86,1) 80%);
    background: -webkit-linear-gradient(45deg, rgba(81,179,86,1) 20%, rgba(142,191,69,1) 50%, rgba(81,179,86,1) 80%);
    background: linear-gradient(90deg, rgba(81,179,86,1) 20%, rgba(123,241,135,1) 50%, rgba(81,179,86,1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#51b356",endColorstr="#51b356",GradientType=1);
    background-size: 100%;
    transition: 0.5s ease;
}




/*imagenes de los consultorios*/
.img-inst{
    cursor: pointer;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0;
}


.img-inst:hover{
    transform:scale(1.2) ;
}



.testimonial-title {
    color: #294273;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Estilos para las estrellas */
.stars {
    display: flex;
    justify-content: center;
}

.gold-star {
    color: gold;
    font-size: 24px;
}

/* Estilos para el texto de reseñas */
.testimonial-text {
    color: #294273;
    font-weight: 400;
}

/* Estilos para la imagen de Google */
.google-logo img {
    display: block;
    margin: auto;
    width: 100px;
}

/* Estilos para el contenedor del Swiper */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.swiper-container {
    width: 100%;
    height: auto;
    margin: 20px 0;
    /* Ajustar el margen según sea necesario */
}

/* Estilos para las diapositivas */
.swiper-slide img {
    width: 100%;
    height: auto;
}


/* Estilos para la paginación */
.swiper-pagination {
    position: relative;
    bottom: -15px;
    margin-top: 10px;
}

@media only screen and (max-width:600px) {
    .swiper-slide img {
        width: 80%;
        height: auto;
    }
}


/*Section*/
.custom_section {
  position: relative;
  background-image: url(../../images/shapes/landings/shape-section.jpg);
}

.container_section{
  padding-top: 70px;
  padding-bottom: 70px;
}


.list_section li {
  padding: 3px 0;
}

.list_section li::marker{
    color: var(--color2);

}

.list_section li i {
  margin-right: 5px;
  color: var(--color2);
}

.section-title_title{
    margin-right: 0px;
    margin-left: 0px;
}


.title_list {
  font-size: 25px;
  color: var(--color2);
  font-weight: 600;
  margin-right: 0px;
    margin-left: 0px;
}

.subtitle_list{
    font-size: 20px;
  color: var(--color2);
  font-weight: 500;
  margin-right: 0px;
    margin-left: 0px;
}

.text-list{
    margin-right: 0px;
    margin-left: 0px;
    color: #1f3152
}


.shape_icon-bg {
  width: 100% !important;
  max-width: 514px !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*Section*/

.image_section {
  border-radius: 20px;
  width: 100%;
  max-width: 576px;
}


.containerImage_section-multiple{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.image_section-multiple{
    width: 48%;
    border-radius: 10px;
}

.shape_icon {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.logo_image {
  width: 100%;
  max-width: 230px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}



.buttons_section{
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.buttons_section a{
    width: fit-content;
}

@media screen and (min-width: 772px) {
  .container_section{
    padding-top: 90px;
    padding-bottom: 90px;
  }
}


@media screen and (min-width: 992px) {
  .shape_icon-bg {
    max-width: 567px !important;
    top: 0;
    left: inherit;
    right: 0;
    bottom: 0;
  }

  .buttons_section{
    justify-content: start;
}
}


@media screen and (min-width: 1080px) {
  .shape_icon-bg {
    max-width: 680px !important; 
  }
}




/*Section - 2*/
    .custom_section-2{
        background-image: url(../../images/shapes/landings/shape-section-2.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }


    .custom_section-2 p, .custom_section-2 strong, .custom_section-2 li, .custom_section-2 h2, .custom_section-2 h3{
        color: white;
    } 
/*Section - 2*/

